Accesskeys for minor edit/watch checkboxes on edit now work in Firefox 3. It apparen...
authorAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 18 Jul 2008 19:36:42 +0000 (19:36 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 18 Jul 2008 19:36:42 +0000 (19:36 +0000)
RELEASE-NOTES
includes/EditPage.php

index 65e60df..bc188db 100644 (file)
@@ -439,6 +439,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   history pages
 * (bug 14845) Bug in prefs javascript: Calling an array item without checking
   its existance.
+* Accesskeys for minor edit/watch checkboxes on edit now work in Firefox 3
 
 === API changes in 1.13 ===
 
index d5a4383..ce741a7 100644 (file)
@@ -1966,7 +1966,7 @@ END
                        );
                        $checkboxes['minor'] =
                                Xml::check( 'wpMinoredit', $checked['minor'], $attribs ) .
-                               "&nbsp;<label for='wpMinoredit'".$skin->tooltipAndAccesskey('minoredit').">{$minorLabel}</label>";
+                               "&nbsp;<label for='wpMinoredit'".$skin->tooltip('minoredit').">{$minorLabel}</label>";
                }
 
                $watchLabel = wfMsgExt('watchthis', array('parseinline'));
@@ -1979,7 +1979,7 @@ END
                        );
                        $checkboxes['watch'] =
                                Xml::check( 'wpWatchthis', $checked['watch'], $attribs ) .
-                               "&nbsp;<label for='wpWatchthis'".$skin->tooltipAndAccesskey('watch').">{$watchLabel}</label>";
+                               "&nbsp;<label for='wpWatchthis'".$skin->tooltip('watch').">{$watchLabel}</label>";
                }
                return $checkboxes;
        }